home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stut_src / rshcrmap.h < prev    next >
Text File  |  1995-02-01  |  983b  |  32 lines

  1. /******************************************************************/
  2. /*                                                                                        */
  3. /*        .RSH file Remap Utility                                                    */
  4. /*        Copyright (c)1993 by Fran‡ois PLANQUE                                */
  5. /*                                                                                        */
  6. /******************************************************************/
  7.  
  8. /*
  9.  * Purpose:
  10.  * --------
  11.  * Create the rsh_map
  12.  * that you must transmit to remap_rsh() during program initialization
  13.  *
  14.  * History:
  15.  * --------
  16.  * 1993: Created by fplanque
  17.  * 02.02.95: removed some stuff
  18.  */
  19.  
  20.  
  21. /* Cr‚ation du rsh_map associ‚e au fichier RSH     */
  22. /*    pr‚sent dans le mˆme module:                        */
  23. static    RSH_MAP    rsh_map=
  24.     {
  25.         NUM_OBS,            &rs_object[0],                /* Objets */
  26.         NUM_TI,            &rs_tedinfo[0],            /* TedInfos */
  27.         NUM_BB,            &rs_bitblk[0],                /* Bitblocks */
  28.         NUM_STRINGS,     &rs_strings[0],            /* Strings */
  29.         NUM_IB,            &rs_iconblk[0],            /* Iconblocks */
  30.         NUM_FRIMG,        &rs_frimg[0],                /* Free Images */
  31.         NUM_FRSTR,        &rs_frstr[0],                /* Free Strings */
  32.     };